TQ3ElementDeleteMethod
You can define a method to delete (that is, dispose of) your custom element types.
typedef TQ3Status (*TQ3ElementDeleteMethod) ( void *internalElement);
internalElement
- A pointer to the element data associated with an element having your custom element type.
DESCRIPTION
YourTQ3ElementDeleteMethod
function should perform whatever operations are necessary to dispose of the element data specified by theinternalElement
parameter.RESULT CODES
YourTQ3ElementDeleteMethod
function should returnkQ3Success
if it is successful andkQ3Failure
otherwise.